home *** CD-ROM | disk | FTP | other *** search
/ Guide To Cracking 2002 / Guide_to_Cracking_2002.iso / Utilities / Zip Crackerz / Fast Zip Cracker.exe / WLIST.TXT < prev   
Encoding:
Text File  |  1999-03-26  |  3.8 KB  |  84 lines

  1. FZC -mwN -nz"zipname" -nw"wordlistname" [-f"StartingLine"]
  2.     [-c"charsetforw3"]  [-l"passwd_len"]
  3.  
  4. Tries every word in the "wordlistname" wordlist starting at line
  5. "StartingLine" (or 1 -the first one- if the optional -f parameter isn't
  6. used) after modifying them according to the mutation level: w0 = NONE,
  7. w1 = FAST, w2 = FLIPCASE, w3 = OVERKILL.
  8. Note that w1, w2 and w3 do not overlap -- eg w3 does not include w1 or
  9. w2 transformations (but w0 is included in w1).
  10. FZC removes leading & trailing spaces in the words before testing.
  11.  
  12. w0 : Just tests the words (same as 'original' in w1).
  13.  
  14. w1 : Does this to the word abcDef:
  15.             abcDef        original
  16.             feDcba        inv original
  17.             abcdef        lc
  18.             ABCDEF        uc
  19.             Abcdef        capitalized
  20.             fedcba        inv lc
  21.             FEDCBA        inv uc
  22.             aBCDeF        elite           (vowels in lc, others uc)
  23.             FeDCBa        inv elite
  24.             AbcdEf        notelite
  25.             fEdcbA        inv notelite
  26.             AbCdEf        alt case 1
  27.             aBcDeF        alt case 2
  28.             FeDcBa        inv alt case 1
  29.             fEdCbA        inv alt case 2
  30.             bcdf          no vowels lc
  31.             BCDF          no vowels uc
  32.             fdcb          inv no vowels lc
  33.             FDCB          inv no vowels uc
  34.             abcdefabcdef  double lc
  35.             ABCDEFABCDEF  double uc
  36.             fedcbafedcba  inv double lc
  37.             FEDCBAFEDCBA  inv double uc
  38.             abcdeffedcba  reflect1 lc
  39.             ABCDEFFEDCBA  reflect1 uc
  40.             fedcbaabcdef  inv reflect1 lc
  41.             FEDCBAABCDEF  inv reflect1 uc
  42.             abcdefedcba   reflect2 lc
  43.             ABCDEFEDCBA   reflect2 uc
  44.             fedcbabcdef   inv reflect2 lc
  45.             FEDCBABCDEF   inv reflect2 uc
  46.  
  47. w2 : Tries each word converted to lowercase and uppercase, in its form
  48.      and inverted.  That's 4 combinations.  In each of these 4 forms,
  49.      FZC inverts the case of up to 3 characters.
  50.      Example: the word "password" can find the following passwords:
  51.         password    drowssap    PASSWORD    DROWSSAP
  52.         Password    drowssaP    pASSWORD    DROWSSAp
  53.         passworD    Drowssap    PASSWORd    dROWSSAP
  54.         PassworD    DrowssaP    pASSWORd    dROWSSAp
  55.         PassWorD    DroWssaP    pASSwORd    dROwSSAp
  56.         paSSwoRd    dRowSSap    PAssWOrD    DrOWssAP
  57.      etc... total = 372 different words (more for longer words).
  58.  
  59. w3 : Converts each word to lowercase and then tries it with every
  60.      combination of 1 added/changed char and|or 1 deleted char.
  61.      Same after converting the word to uppercase.
  62.      Added/changed characters are specified in the -c parameter,
  63.      and defaults to "aAs!1" (lowercase+uppercase+space+symbols+digits)
  64.      Examples: "microsoft" can find the "mico$oft" password.
  65.                "annibal"                "cannibal",
  66.                "level"                  "LEV9EL",
  67.                "only"                   "one",
  68.                "notice"                 "noTice",
  69.                "poster"                 "POSER!", etc.
  70.  
  71. The optional -l"passwd_len" parameter tells FZC to only use words of a
  72. given length / length range.  Defaults to -l0 (equal to -l1-32) that
  73. accepts words of any valid length.  See BFORCE.TXT for details about -l.
  74.  
  75. While processing a wordlist, you can press the space bar to view the
  76. current word or ESC to abort the session.  When you abort a session, FZC
  77. will tell you the position in the wordlist of the last word tried (and
  78. log it to FZC.LOG as well).  Suspend/resume isn't implemented, but you
  79. can do it manually using the number of the last word tried + 1 as
  80. StartingWord in the next session.
  81.  
  82. Examples:  FZC -mw1 -nztest.zip -nwwords
  83.            FZC -mw3 -nztest.zip -nwwords -f12000
  84.